home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / automa_1 / splash.frm < prev    next >
Text File  |  1999-08-23  |  804b  |  32 lines

  1. VERSION 5.00
  2. Begin VB.Form Splash 
  3.    BackColor       =   &H0080FFFF&
  4.    BorderStyle     =   0  'None
  5.    Caption         =   "Form1"
  6.    ClientHeight    =   3000
  7.    ClientLeft      =   0
  8.    ClientTop       =   0
  9.    ClientWidth     =   6000
  10.    Icon            =   "Splash.frx":0000
  11.    LinkTopic       =   "Form1"
  12.    Picture         =   "Splash.frx":030A
  13.    ScaleHeight     =   3000
  14.    ScaleWidth      =   6000
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   2  'CenterScreen
  17. End
  18. Attribute VB_Name = "Splash"
  19. Attribute VB_GlobalNameSpace = False
  20. Attribute VB_Creatable = False
  21. Attribute VB_PredeclaredId = True
  22. Attribute VB_Exposed = False
  23. Private Sub Form_Activate()
  24. Load frmMain
  25. Load frmConnect
  26. Load frmOptions
  27. Load frmWeb
  28. frmMain.Visible = True
  29. Unload Me
  30. End Sub
  31.  
  32.